home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / docs / Image_Barcode / Readme.txt < prev   
Text File  |  2004-03-24  |  2KB  |  86 lines

  1. = Image_Barcode - a package to render barcodes =
  2. ------------------------------------------------
  3.  
  4. With PEAR::Image_Barcode class you can create a barcode representation of a
  5. given string.
  6.  
  7. This class uses GD function because this the generated graphic can be any of
  8. GD supported supported image types.
  9.  
  10.  
  11. = Installation =
  12. ----------------
  13.  
  14. You can install Image_Barcode issuing the following command (as root):
  15.  
  16.     # pear install Image_Barcode
  17.  
  18. If you don't have the 'pear' command, please consult PEAR::The PHP Extension and
  19. Application Repository homepage at http://pear.php.net
  20.  
  21.  
  22. = Getting Started =
  23. -------------------
  24.  
  25. Just load the class in your script:
  26.  
  27.     require_once('Image/Barcode.php');
  28.  
  29. Call the Image_Barcode::draw() as the follow:
  30.  
  31.     Image_Barcode::draw('1234', 'int25', 'png');
  32.  
  33. Where:
  34.  
  35. = '1234' : string you want to draw as barcode;
  36. = 'int25': barcode type (check the avaible types at 'Barcode' subdir);
  37. = 'png'  : generated graphic type.
  38.  
  39.  
  40. = Current State =
  41. -----------------
  42.  
  43. You can get the latest code at the PEAR site:
  44.     http://pear.php.net/package-info.php?package=Image_Barcode
  45.  
  46.  
  47. = Contributing =
  48. ----------------
  49.  
  50. Help from people who want code new barcode module types are very welcome. Just
  51. send your module directly to jason@unleashed.com.br
  52.  
  53.  
  54. = Credits =
  55. -----------
  56.  
  57. Core class
  58.     written by Marcelo Subtil Marcal <jason@unleashed.com.br>
  59.  
  60. Interleaved 2 of 5 barcode module type
  61.     written by Marcelo Subtil Marcal <jason@unleashed.com.br>
  62.  
  63. EAN13 barcode module type
  64.     written by Didier FOURNOUT <didier.fournout@nyc.fr>
  65.  
  66. Code39 barcode module type
  67.     written by Ryan Briones <ryanbriones@webxdesign.org>
  68.  
  69.  
  70. = Thanks to =
  71. -------------
  72.  
  73. Mark A.R. <mark@mark.org.il>
  74.  
  75.  
  76. = Author =
  77. ----------
  78.  
  79. Written by Marcelo Subtil Marcal <jason@unleashed.com.br>
  80.  
  81.  
  82. = Reporting Bugs =
  83. ------------------
  84.  
  85. Report bugs to Marcelo Subtil Marcal <jason@unleashed.com.br>
  86.